/* CSS Master Settings */
.pcp-fb-scope {
    background: #080808;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.pcp-fb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 50px;
}

/* Heading Logic */
.pcp-fb-heading {
    position: relative;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 12px;
    display: inline-block;
}

.pcp-fb-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #ffcc00;
}

.pcp-fb-heading span {
    color: #ffcc00;
}

.pcp-fb-center-text {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.pcp-fb-center-text .pcp-fb-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Responsive */
.pcp-fb-hero {
    padding: clamp(80px, 15vh, 160px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('') center/cover;
}

.pcp-fb-tag {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.pcp-fb-h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.1;
}

.pcp-fb-p {
    color: #ccc;
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Buttons */
.pcp-fb-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pcp-fb-btn-gold {
    background: #ffcc00;
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.pcp-fb-btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.pcp-fb-btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Sections */
.pcp-fb-section {
    padding: clamp(50px, 10vh, 80px) 0;
}

.pcp-fb-bg-dark {
    background: #030303;
}

.pcp-fb-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pcp-fb-info-box {
    padding: 30px;
    background: #111;
    border-radius: 12px;
}

.pcp-fb-border-y {
    border-top: 3px solid #ffcc00;
}

/* Product Grid - Advanced Responsive */
.pcp-fb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pcp-fb-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.4s;
    text-align: center;
}

.pcp-fb-card:hover {
    border-color: #ffcc00;
    transform: translateY(-10px);
}

.pcp-fb-card-img {
    height: 180px;
    overflow: hidden;
    /* border-bottom: 4px solid #ffcc00; */
}

.pcp-fb-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.pcp-fb-card-body {
    padding: 25px;
}

.pcp-fb-card-body i {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 15px;
    display: block;
}

.pcp-fb-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* List Box Logic */
.pcp-fb-dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pcp-fb-list-box {
    padding: 40px;
    border-radius: 15px;
    background: #111;
}

.pcp-fb-bg-gold {
    background: #ffcc00;
}

.pcp-fb-ul {
    list-style: none;
    padding: 0;
}

.pcp-fb-ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pcp-fb-bg-gold .pcp-fb-ul li {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pcp-fb-ul i {
    color: #ffcc00;
}

.pcp-fb-bg-gold .pcp-fb-ul i {
    color: #000;
}

/* RESPONSIVE QUERIES */
@media (max-width: 992px) {
    .pcp-fb-split {
        grid-template-columns: 1fr;
    }

    .pcp-fb-hero {
        text-align: center;
    }

    .pcp-fb-btns,
    .pcp-fb-hero-p {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .pcp-fb-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .pcp-fb-ul li {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .pcp-fb-btn-gold,
    .pcp-fb-btn-white {
        width: 100%;
    }

    .pcp-fb-list-box {
        padding: 30px 20px;
    }
}